Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.84 KB

File metadata and controls

49 lines (32 loc) · 1.84 KB
related
cheat-sheet
SSL-Certificates
OpenSSL

Perfect Forward Secrecy (PFS)

Public Key Pinning (HPKP)

  • HPKP - HTTP Public Key Pinning: Headers look like

    Public-Key-Pins-Report-Only
    
    Public-Key-Pins pin-<algorithm>="<hash>"; pin-<algorithm>="<hash>"; max-age=<age>[; includeSubdomains]
    
  • Creating SPKI fingerprints

    openssl x509 -noout -in certificate.pem -pubkey | \
    openssl asn1parse -noout -inform pem -out public.key;
    openssl dgst -sha256 -binary public.key | openssl enc -base64
    

OSCP

HTTPS Testing

SSL Performance